// // Copyright (c) 2009 All Right Reserved // // vl // // 2009-01-01 // Contains ... namespace LargoCommon.Music { /// Type of melodic part. public enum MelodicFunction { /// Type of part. None = 0, /// Type of part. MelodicMotion = 1, /// Type of part. MelodicFilling = 2, /// Type of part. HarmonicMotion = 3, /// Type of part. HarmonicFilling = 4, /// Type of part. HarmonicBass = 5, /// Type of part. MelodicBass = 6 } }